home *** CD-ROM | disk | FTP | other *** search
/ Iron Maiden - Maiden Hell! / Iron Maiden - Maiden Hell! Promotional CD-ROM.iso / mac / promo.dxr / scripts_73_adjust video vol = .ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  659 b   |  21 lines

  1. on mouseEnter
  2.   set the cursor of sprite the currentSpriteNum to [the number of member "hand", the number of member "handmask"]
  3.   set the member of sprite 16 to "rolloversVolume"
  4. end
  5.  
  6. on mouseDown me
  7.   global gVidVol
  8.   repeat while the stillDown
  9.     set the locV of sprite the currentSpriteNum to the mouseV
  10.     set plaice to float((the locV of sprite 28 - the bottom of sprite 27) * -1000 / the height of sprite 27) / 1000
  11.     set the volumeLevel of sprite(7) to plaice * 255
  12.     updateStage()
  13.   end repeat
  14.   set gVidVol to the volume of sprite 7
  15. end
  16.  
  17. on mouseLeave
  18.   set the cursor of sprite the currentSpriteNum to 0
  19.   set the puppet of sprite 16 to 0
  20. end
  21.